延續之前的發文ㄏㄞㄑㄜ還可以加上什麼呢?
您可以根據需要進一步自訂 404 頁面,例如添加網站導航、搜索框、或是一些有趣的圖形。例如:
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>頁面未找到 - 404</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #fff;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 100px;
margin: 0;
}
p {
font-size: 24px;
margin: 20px 0;
}
a {
font-size: 18px;
color: #007BFF;
text-decoration: none;
border: 2px solid #007BFF;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #007BFF;
color: #fff;
}
</style>
</head>
<body>
<h1>404</h1>
<p>抱歉,您訪問的頁面不存在。</p>
<a href="index.html">返回首頁</a>
</body>
</html>